Xbasic

OBJECT.MINIMIZE Function

Syntax

.Minimize()

Description

Minimizes the main program window.

The <OBJECT>.MINIMIZE() method applies to:

Alpha Anywhere (for <OBJECT> use the keyword "A5")
Control Panel (for <OBJECT> use the keyword "CONTROLPANEL")
Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)

The <OBJECT>.MINIMIZE() method minimizes the main Alpha Anywhere program window.

Example

The following example loads, displays, and minimizes the Customer Information form window.

dim ptr as P
ptr = form.load("Customer Information")
ptr.show()
ptr.minimize()

Limitations

Desktop applications only.

See Also